import random

def simu():
    vote = 0
    for i in range(200):
        if random.random() < 0.2:
            vote = vote + 1
    return vote